page.tsx 575 B

1234567891011121314151617
  1. import { LocalPropsWithChildren } from "@/types";
  2. import { Button, Input } from "@nextui-org/react";
  3. import { useTranslations } from "next-intl";
  4. import { FC } from "react";
  5. const App: FC<LocalPropsWithChildren> = (props) => {
  6. const t = useTranslations("global");
  7. return (
  8. <div className="2xl:boder-origin-900 container border-4 border-blue-800 sm:border-red-900 md:border-green-900 lg:border-[#666] xl:border-[#fff]">
  9. <Button color={"primary"}>click me</Button>
  10. <Input label="Email" />
  11. </div>
  12. );
  13. };
  14. export default App;